home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
OBJ2ASM.ZIP
/
OUMALLOC.C
< prev
next >
Wrap
Text File
|
1991-10-02
|
327b
|
17 lines
#include <stdio.h>
#include <alloc.h>
#include <stdlib.h>
#include "o.h"
void *o_malloc( word size )
{
char *result;
result = (char *)calloc( 1, size );
if( result == NULL ) {
fprintf(stderr, "Out of memory! [Crrraassshhhhh....]\n" );
exit(4);
}
return( result );
}